home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / PROGTOOL / PASSDK30.ZIP;1 / DISK1.ZIP / PAS / PCM / WAVEIT < prev   
Encoding:
Text File  |  1992-06-15  |  548 b   |  17 lines

  1. #
  2. # Build file for creating the command line WAVEIT conversion program
  3. #
  4. AS = /Mx              ### make file ASSEMBLER permenant switches
  5. CS = /c /Ox /Zp1          ### make file COMPILER permenant switches
  6. LS = /Ma              ### make file LINKER permentant switches
  7. AO =                  ### make file ASSEMBLER command line switches
  8. CO =                  ### make file COMPILER command line switches
  9. LO =                  ### make file LINKER command line switches
  10.  
  11. waveit.obj: waveit.c
  12.     cl $(CS) $(CO) waveit.c
  13.  
  14. waveit.exe: waveit.obj
  15.     link $(LS) $(LO)  waveit;
  16.  
  17.